notebook: fixup the last commit
authorCosimo Cecchi <cosimoc@gnome.org>
Mon, 7 Mar 2011 03:04:13 +0000 (22:04 -0500)
committerCosimo Cecchi <cosimoc@gnome.org>
Mon, 7 Mar 2011 03:08:26 +0000 (22:08 -0500)
Let the tab overlap eat the padding, otherwise having tab-overlap >
tab-curvature without cutting the label is impossible.
This way we give the label widget all the allocation possible before
giving up and cutting it if the values for tab-overlap are too extreme
for the given padding.

gtk/gtknotebook.c

index 08699bc898fecbed0fb8fa7c1e3e3d0d056b2a01..77d44f9cb7d8195f46d951a911ff6154fd3e7a8d 100644 (file)
@@ -6065,13 +6065,18 @@ gtk_notebook_page_allocate (GtkNotebook     *notebook,
            * coordinate of the allocation too, to position it after
            * the end of the overlap.
            */
-          if (page != priv->cur_page && tab_overlap > tab_curvature)
+          if (page != priv->cur_page && tab_overlap > tab_curvature + MIN (tab_padding.left, tab_padding.right))
             {
-              child_allocation.width -= tab_overlap - tab_curvature;
-
               if (gtk_notebook_page_num (notebook, page->child) >
                   gtk_notebook_page_num (notebook, priv->cur_page->child))
-                child_allocation.x += tab_overlap - tab_curvature;
+                {
+                  child_allocation.x += tab_overlap - tab_curvature - tab_padding.left;
+                  child_allocation.width -= tab_overlap - tab_curvature - tab_padding.left;
+                }
+              else
+                {
+                  child_allocation.width -= tab_overlap - tab_curvature - tab_padding.right;
+                }
             }
         }
       else